home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-10-08 | 288 b | 20 lines |
- CC = g++
-
- all: confint.o test test01
-
- check: test test01
- test
- test01
-
- confint.o: confint.h confint.cc
- $(CC) -c confint.cc
-
- test: test.o confint.o
- $(CC) -o test test.o confint.o -lm
-
- test01: test01.o confint.o
- $(CC) -o test01 test01.o confint.o -lm
-
- .cc.o:
- $(CC) -c -o $@ $*.cc
-